#ifndef SINGLE
//  An adapted ObjectSpace example for use with SGI STL

#include <iostream.h>
#include <algo.h>

#ifdef MAIN
#define ostmit_test main
#endif
#endif
int ostmit_test(int, char**)
{
  cout<<"Results of ostmit_test:"<<endl;
#ifndef ACORN_CFRONT
int array [] = { 1, 5, 2, 4 };
#else
static int array [] = { 1, 5, 2, 4 };
#endif

  char* string = "hello";
  ostream_iterator<char> it1(cout);
  copy(string, string + 5, it1);
  cout << endl;
  ostream_iterator<int> it2(cout);
  copy(array, array + 4, it2);
  cout << endl;
  return 0;
}
